straight-chef-47891
03/23/2023, 4:00 AMcy.go('forward') then cy.go('back') on my tests to check if it still shows the last state of the page. However, it seems no data is displayed in the table after doing the commands using Chrome and Edge. Works fine in Electron and Firefox.
 - shows 1 record
 - still shows 1 record
===
 - shows 1 record
 - shows nothing
I trie to disable as much as I can on my plugin/index.ts file with the following to no avail:
typescript
if (browser.name === 'chrome' || browser.name === 'edge') {
launchOptions.args.push('--disable-features=SameSiteByDefaultCookies,CrossSiteDocumentBlockingIfIsolating,CrossSiteDocumentBlockingAlways,IsolateOrigins,site-per-process');
return launchOptions;
}